Remove xen specific bug() implementation -- the regular one works just fine.
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Thu, 22 Dec 2005 14:50:06 +0000 (15:50 +0100)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Thu, 22 Dec 2005 14:50:06 +0000 (15:50 +0100)
From: "Jan Beulich" <JBeulich@novell.com>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
linux-2.6-xen-sparse/include/asm-xen/asm-i386/bug.h [deleted file]

diff --git a/linux-2.6-xen-sparse/include/asm-xen/asm-i386/bug.h b/linux-2.6-xen-sparse/include/asm-xen/asm-i386/bug.h
deleted file mode 100644 (file)
index db60354..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef _I386_BUG_H
-#define _I386_BUG_H
-
-#include <linux/config.h>
-
-#define BUG() do { \
-       printk("kernel BUG at %s:%d (%s)!\n", \
-              __FILE__, __LINE__, __FUNCTION__); \
-       dump_stack(); \
-       panic("BUG!"); \
-} while (0)
-#define HAVE_ARCH_BUG
-
-#include <asm-generic/bug.h>
-
-#endif